com.supermap.data.license

Enum CloudLicenseType

  • java.lang.Object
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CloudLicenseType>


    public enum CloudLicenseType
    extends java.lang.Enum<CloudLicenseType>
    • Enum Constant Detail

      • CloudLicense_Trial

        public static final CloudLicenseType CloudLicense_Trial
        Trial License
      • CloudLicense_Formal

        public static final CloudLicenseType CloudLicense_Formal
        formal license
      • CloudLicense_Develop

        public static final CloudLicenseType CloudLicense_Develop
        Development License
      • CloudLicense_Education

        public static final CloudLicenseType CloudLicense_Education
        Educational License
      • CloudLicense_Staff

        public static final CloudLicenseType CloudLicense_Staff
        Employee Licensing
    • Method Detail

      • values

        public static CloudLicenseType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CloudLicenseType c : CloudLicenseType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CloudLicenseType valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null